home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 40
/
Aminet 40 (2000)(Schatztruhe)[!][Dec 2000].iso
/
Aminet
/
mus
/
play
/
DeliDecrunch.lha
/
src
/
DeliHead.asm
< prev
next >
Wrap
Assembly Source File
|
2000-10-15
|
1KB
|
54 lines
; DeliDecruncher (C) 2000 Stuart Caie <kyzer@4u.net>
;
; This program is free software; you can redistribute it and/or modify
; it under the terms of the GNU General Public License as published by
; the Free Software Foundation; either version 2 of the License, or
; (at your option) any later version.
;
; This program is distributed in the hope that it will be useful,
; but WITHOUT ANY WARRANTY; without even the implied warranty of
; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
; GNU General Public License for more details.
;
; You should have received a copy of the GNU General Public License
; along with this program; if not, write to the Free Software
; Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
;
xref _PlayerTags
moveq #-1,d0
rts
dc.b 'DELIRIUM'
dc.l _PlayerTags
dtg_GetListData=$38
dtg_CopyString=$48
dtg_AllocListData=$78
dtg_FreeListData=$7C
; xdef _DeliGetListData
;_DeliGetListData
; move.l a6,-(sp)
; move.l dtg_GetListData(a5),a6
; bra.s __call
;
; xdef _DeliCopyString
;_DeliCopyString
; move.l a6,-(sp)
; move.l dtg_CopyString(a5),a6
; bra.s __call
xdef _DeliAllocListData
_DeliAllocListData
move.l a6,-(sp)
move.l dtg_AllocListData(a5),a6
bra.s __call
xdef _DeliFreeListData
_DeliFreeListData
move.l a6,-(sp)
move.l dtg_FreeListData(a5),a6
__call jsr (a6)
move.l (sp)+,a6
rts